/* === RESET & BASE STYLES === */
* {
	box_sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background-color: #2b2748;
	color: #4ecdc4; /* Cyan color */
	font-family: "Lato", sans-serif;
	font-weight: 400;
	font-style: normal;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-start; 
	align-items: center;
	text-align: center;
	overflow-x: hidden;
	position: relative; /* Needed for absolute positioning of the icon */
}

/* === CONTACT ICON (TOP RIGHT) === */
.contact-icon {
	position: absolute;
	top: 25px;
	right: 25px;
	color: #4ecdc4; /* Theme color */
	width: 36px;
	height: 36px;
	transition: transform 0.3s, color 0.3s;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-icon:hover {
	color: #3ebcb3; /* Slightly darker on hover */
	transform: scale(1.1); /* Zoom effect */
}

.contact-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

/* === MAIN CONTAINER === */
.container {
	padding: 2rem;
	max-width: 800px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 5vh; 
}

/* === GRAPHIC LOGO === */
.main-logo {
	max-width: 70%;
	height: auto;
	margin-bottom: 3rem; 
	display: block;
	max-width: 314px;
}
h1.herotitle {
	font-size: 1.6rem;
	font-family: "Lato", sans-serif;
	font-weight: 700;
	font-style: normal;
	margin-bottom: 1rem;
}

p.subtitle {
	font-size: 1.2rem;
	margin-bottom: 3rem;
	opacity: 0.9;
	font-weight: 400;
}

/* === COUNTDOWN GRID === */
.countdown {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.time-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.05); 
	border: 1px solid rgba(78, 205, 196, 0.2);
	border-radius: 12px;
	width: 120px;
	height: 120px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.number {
	font-size: 3rem;
	font-weight: bold;
	color: #fafafa;
}

.label {
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 5px;
	color: #4ecdc4; 
}

/* === FOOTER === */
footer {
	margin-top: auto;
	padding: 2rem;
	font-size: 0.8rem;
	opacity: 0.6;
}

/* === COOKIE BANNER === */
#cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(30, 27, 50, 0.95);
	border-top: 1px solid rgba(78, 205, 196, 0.3);
	padding: 1.5rem;
	display: none;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
	box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
	z-index: 1000;
}

#cookie-banner p {
	font-size: 0.9rem;
	margin: 0;
}

#cookie-banner a {
	color: #fafafa;
	text-decoration: underline;
}

#cookie-banner button {
	background-color: #4ecdc4;
	color: #2b2748;
	border: none;
	padding: 0.5rem 1.5rem;
	border-radius: 4px;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.3s;
}

#cookie-banner button:hover {
	background-color: #3ebcb3;
}

/* === RESPONSIVENESS === */
@media (max-width: 600px) {
	.contact-icon {
		top: 15px;
		right: 15px;
		width: 30px;
		height: 30px;
	}
	.container {
		margin-top: 5vh; /* Adjusted to not overlap with icon */
	}
	.main-logo {
		margin-bottom: 2rem;
	}
	h1.herotitle {
		font-size: 1.4rem;
		margin-bottom: 2rem;
		font-weight: bold;
	}
	p.subtitle {
		font-size: 1rem;
		margin-bottom: 2rem;
	}
	.countdown {
		gap: 1rem;
	}
	.time-box {
		width: 80px;
		height: 80px;
	}
	.number {
		font-size: 1.8rem;
	}
	.label {
		font-size: 0.7rem;
	}
	#cookie-banner {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}
}